home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España: xRes 2.0 / macformat_xres.iso / Gráficos 3D / MiniCad 6.0.1 demo / MiniCad 6.0.1 Demo / MiniCad 6.0.1 Demo.rsrc / STR#_7013.txt < prev    next >
Text File  |  1996-03-22  |  158b  |  15 lines

  1. Returns the character of the ASCII code of v.
  2. e.g.
  3. Chr(97) = a
  4. Chr(65) = A
  5.  
  6. Chr(v);
  7.  
  8. Returns the ASCII code of v.
  9. e.g. 
  10. Ord('a') = 97
  11. Ord('A') = 65
  12.  
  13. Ord(v);
  14.  
  15.